home *** CD-ROM | disk | FTP | other *** search
/ MaxiMac 2000 December / MaxiMac 109.iso / Macworld on CD n°109 / Applications (Mac OS Classic) / Unsanity™ Echo 1.1 / Skins / Default / EchoScripts / EchoScripts.rsrc / TEXT_1331_EchoScript.Button.newf.txt < prev    next >
Encoding:
Text File  |  2000-10-31  |  545 b   |  32 lines

  1. MouseClick
  2. {
  3.  BrowserNewFolder
  4. }
  5.  
  6. Load
  7. {
  8. # Set total tracks and total time fields
  9.     SetValue ttrk TotalTracks
  10.     SetValue ttim TotalTime
  11. }
  12.  
  13. Busy
  14. {
  15. # When busy, update total tracks
  16.     SetValue ttrk TotalTracks
  17. }
  18.  
  19. BusyEnd
  20. {
  21. # When player is done adding tracks to the database,
  22. # update the ttrk field to make sure it reflects current total tracks count.
  23.     SetValue ttrk TotalTracks
  24. }
  25.  
  26. TotalTimeUpdated
  27. {
  28. # On track update, synch fields in the window to make sure they are current.
  29.     SetValue ttim TotalTime
  30.     SetValue ttrk TotalTracks
  31. }
  32.